home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / tool_inc.zip / DELAY.INC < prev    next >
Text File  |  1989-06-02  |  802b  |  33 lines

  1.  
  2. (*
  3.  * Copyright 1987, 1989 Samuel H. Smith;  All rights reserved
  4.  *
  5.  * This is a component of the ProDoor System.
  6.  * Do not distribute modified versions without my permission.
  7.  * Do not remove or alter this notice or any other copyright notice.
  8.  * If you use this in your own program you must distribute source code.
  9.  * Do not use any of this in a commercial product.
  10.  *
  11.  *)
  12.  
  13. procedure delay(ms: longint);
  14.    (* delay for a specified number of miliseconds; give up time while
  15.       delaying *)
  16. var
  17.    finish:  longint;
  18.    start:   longint;
  19.    now:     longint;
  20.  
  21. begin
  22.    start := lget_ms;
  23.    finish := start + ms;
  24.  
  25.    repeat
  26.       give_up_time;
  27.       now := lget_ms;
  28.    until (now > finish) or    {time elapsed}
  29.          (now < start);       {midnight rolover!}
  30. end;
  31.  
  32.  
  33.